home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
make
/
icmake-6.000
/
icmake-6
/
icmake
/
exec
/
funbnot.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-02-08
|
332 b
|
20 lines
/*
\funcref{fun\_bnot}{void fun\_bnot ()}
{}
{}
{}
{}
{funbnot.c}
{
Function {\em fun\_bnot()} bitwise-not's the last pushed
variable. This variable is assumed to be of type {\em e\_int}.
}
*/
#include "icm-exec.h"
void fun_bnot ()
{
stack [sp].vu.intval = ~stack [sp].vu.intval;
}